home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2004 #2 / Amiga Plus CD - 2004 - No. 02.iso / AmiSoft / Dev / basic / amiblitz_ful.lha / AmiBlitz2 / Examples / converttest.asm next >
Encoding:
Assembly Source File  |  1980-04-17  |  344 b   |  27 lines

  1. ;This shows what can convert from a .asm file to bb2 asm
  2.  
  3. wert EQU 3
  4. ;wert2 SET wert+1
  5.                   ; macro
  6. test3 dc.b "AllocMem"
  7. AllocMem
  8.  jsr AllocMem
  9. .10
  10.  bra .10
  11. test macro
  12. \@2
  13.  bra \@2
  14.   endm;docu
  15.  
  16. test2 MACRO
  17.   move.l \1,d0 
  18.  
  19.  ENDM ;docu
  20.    move.l $4.W,a0
  21.    test d0
  22.    test d1
  23.    move.l #wert,d0
  24.    ;move.l #wert2,d1
  25.    dc.b "öäü"
  26.  
  27.